/* ============================================================
   PROMISE / MISSION / VISION - SCREENSHOT STYLE
============================================================ */

.pmv-section {
    position: relative;
    width: 100%;
    height: 800px;
    min-height: 800px;

    overflow: hidden;

    background: #193873;

    isolation: isolate;
}


/* ============================================================
   BACKGROUND IMAGE
============================================================ */

.pmv-bg-layer {
    position: absolute;
    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    background-image: var(--pmv-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 1;

    transform: scale(1.01);

    transition:
        opacity 350ms ease,
        transform 900ms ease;

    pointer-events: none;
}


/* NO BLUE OVERLAY */

.pmv-section::after {
    display: none;
}


/* ============================================================
   CARDS CONTAINER
============================================================ */

.pmv-container {
    position: absolute;

    top: 55%;
    left: 10%;

    z-index: 2;
    gap: 12px;
    display: flex;
    align-items: stretch;

    width: auto;
    height: 450px;

    transform: translateY(-50%);

    margin: 0;
    padding: 0;
}


/* ============================================================
   COMMON CARD
============================================================ */

.pmv-card {
    position: relative;

    width: 55px;
    height: 450px;

    flex: 0 0 55px;

    margin: 0;

    overflow: hidden;

    cursor: pointer;

    background: rgba(239, 240, 236, 0.72);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-left:
        1px solid rgba(255, 255, 255, 0.35);

    border-right:
        1px solid rgba(70, 60, 55, 0.18);

    transition:
        width 700ms cubic-bezier(.77, 0, .18, 1),
        flex-basis 700ms cubic-bezier(.77, 0, .18, 1),
        background 400ms ease;

    will-change:
        width,
        flex-basis;
}


/* ============================================================
   ACTIVE CARD
============================================================ */

.pmv-card.active {
    width: 450px;
    flex: 0 0 450px;

    cursor: default;
height: 100%;
    border: none;

    background:
        linear-gradient(
            145deg,
            rgba(236, 181, 139, 0.90) 0%,
            rgba(214, 168, 151, 0.88) 30%,
            rgba(159, 153, 182, 0.90) 60%,
            rgba(101, 124, 177, 0.94) 100%
        );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, 0.20);
}


/* ============================================================
   ACTIVE CARD GRADIENT LIGHT
============================================================ */

.pmv-card.active::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        radial-gradient(
            circle at 10% 5%,
            rgba(255, 255, 255, 0.16),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.06),
            transparent 45%,
            rgba(43, 70, 135, 0.12)
        );

    pointer-events: none;
}


/* ============================================================
   CARD IMAGE
============================================================ */

.pmv-card-image {
    display: none;
}


/* ============================================================
   CLOSED VERTICAL TITLE
============================================================ */

.pmv-closed-title {
    position: absolute;

    left: 50%;
    bottom: 85px;

    z-index: 5;

    margin: 0;

    color: #0a2a68;

    font-size: 16px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    white-space: nowrap;

    transform:
        translateX(-50%)
        rotate(-90deg);

    transform-origin: center;

    opacity: 1;

    transition:
        opacity 200ms ease;

    pointer-events: none;
}


.pmv-card.active .pmv-closed-title {
    opacity: 0;
}


/* ============================================================
   ORANGE ARROW
============================================================ */

.pmv-card:not(.active)::before {
    content: "➜";

    position: absolute;
    top: 22px;
    left: 50%;
    z-index: 10;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff9147;
    color: #16356d;

    font-size: 12px;
    font-weight: 700;

    transform:
        translateX(-50%)
        rotate(-90deg);

    pointer-events: none;
}


/* ============================================================
   ACTIVE CONTENT
============================================================ */

.pmv-content {
    position: relative;

    z-index: 10;

    width: 450px;
    height: 450px;

    padding:
        58px
        38px
        35px;

    color: #ffffff;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity 200ms ease,
        transform 400ms ease,
        visibility 0s linear 400ms;

    pointer-events: none;
}


.pmv-card.active .pmv-content {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    transition:
        opacity 400ms ease 250ms,
        transform 450ms ease 200ms,
        visibility 0s;

    
}


/* ============================================================
   ACTIVE TITLE
============================================================ */

.pmv-main-title {
    margin: 0 0 27px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.2;
font-family: poppins;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ============================================================
   TEXT
============================================================ */

.pmv-text-block {
    margin-bottom: 14px;
}


.pmv-text-block h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.35;

    font-weight: 600;
}


.pmv-text-block p {
    margin: 0;

    color: rgba(255, 255, 255, 0.96);
 font-family: sans-serif;
    font-size: 24px;
    line-height: 1.45;

    font-weight: 400;
}


/* ============================================================
   STATS
============================================================ */

.pmv-stats {
    display: flex;

    align-items: flex-start;

    gap: 35px;

    margin-top: 20px;
}


.pmv-stat {
    min-width: 70px;
}


.pmv-stat strong {
    display: block;

    margin-bottom: 6px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1;

    font-weight: 700;
}


.pmv-stat span {
    display: block;

    color: rgba(255, 255, 255, 0.9);

    font-size: 10px;
    line-height: 1.3;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .pmv-section {
        height: auto;
        min-height: 650px;

        padding: 30px 20px;
    }


    .pmv-container {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;
        height: auto;

        transform: none;

        display: flex;
        flex-direction: column;

        gap: 8px;
    }


    .pmv-card {
        width: 100%;
        height: 65px;

        flex: 0 0 65px;
    }


    .pmv-card.active {
        width: 100%;
        height: 420px;

        flex: 0 0 420px;
    }


    .pmv-content {
        width: 100%;

        padding: 40px 28px;
    }


    .pmv-closed-title {
        top: 50%;
        left: 22px;
        bottom: auto;

        transform: translateY(-50%);

        font-size: 15px;
    }


    .pmv-card:not(.active)::before {
        top: 50%;
       margin-left: 10px;
        right: 18px;

        transform: translateY(-50%);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 576px) {

    .pmv-section {
        padding: 20px 15px;
    }


    .pmv-card.active {
        height: 470px;

        flex-basis: 470px;
    }


    .pmv-content {
        padding:
            35px
            22px;
    }


    .pmv-main-title {
        font-size: 19px;

        margin-bottom: 25px;
    }


    .pmv-text-block p {
        font-size: 10.5px;
    }

}